home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / Evas_Engine_XRender_X11.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-01-09  |  624 b   |  26 lines

  1. #ifndef _EVAS_ENGINE_XRENDER_X11_H
  2. #define _EVAS_ENGINE_XRENDER_X11_H
  3.  
  4. #include <X11/Xlib.h>
  5.  
  6. typedef struct _Evas_Engine_Info_XRender_X11              Evas_Engine_Info_XRender_X11;
  7.  
  8. struct _Evas_Engine_Info_XRender_X11
  9. {
  10.    /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
  11.    /* at you and make nasty noises */
  12.    Evas_Engine_Info magic;
  13.  
  14.    /* engine specific data & parameters it needs to set up */
  15.    struct {
  16.       Display       *display;
  17.       Drawable       drawable;
  18.       Pixmap         mask;
  19.       Visual        *visual;
  20.       unsigned char  destination_alpha : 1;
  21.    } info;
  22. };
  23. #endif
  24.  
  25.  
  26.